
.column-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #FFFF;
    padding: 1.5rem 2rem;
    width:100%;
}

.column-left h1 {
 margin-bottom: 1rem;
 font-size: 5rem;
 text-shadow: -2px 4px rgb(0, 0, 0, .25);
 -webkit-text-stroke: 2.5px black;
}

.column-left p1{
    margin-bottom: 2rem;
    font-size: 1.75rem;
    line-height: 2;
    text-shadow: -2px 4px rgb(0, 0, 0, .25);
    -webkit-text-stroke: 1.25px black;
}

.column-left h2{
    margin-bottom: 1rem;
    font-size: 3rem;
    text-shadow: -2px 4px rgb(0, 0, 0, .25);
    -webkit-text-stroke: 2px black;
}

.column-left ul.a{
    list-style-position: outside;
}

.column-left li{
    margin-bottom: 2rem;
    margin-left: 2rem;
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: -2px 4px rgb(0, 0, 0, .25);
    -webkit-text-stroke: 1px black;
}

.column-left h3{
    padding-top: 8vh;
    margin-left: 49rem;
    font-size: 3rem;
    text-shadow: -2px 4px rgb(0, 0, 0, .25);
    -webkit-text-stroke: 2px black;
}

#jimg{
    width: auto;
    height: 100%;
}

#cimg{
    width: auto;
    height: 100%;
}

#rimg{
    width: 90%;
    height: 100%;
}

#jsimg{
    width: auto;
    height: 100%;
}

.container {
    position: relative;
    width: auto;
    height: 100%;
  }

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #FFF;
  }
  
  .container:hover .overlay {
    opacity: 1;
  }
  .text {
    color: #000;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .row {
    display: flex;  /* Updated to flex */
    align-items: center; /* Align items to center vertically */
    justify-content: space-evenly;
    width: 100%;
    height: auto; /* Allow rows to adjust based on content */
    max-height: 25%;
    margin: 0;  /* Remove any margin */
}

.column-right{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content:end;
    align-items: flex-end;
    color: #000;
    width: 57.5%;
    height:60%;
}

#me-img{
    width:auto;
    height:auto;
    position: absolute;
}
/* smaller screens might also need to fix*/
@media only screen and (max-width: 620px) {
    .column-left{
        justify-content: flex-start;
        }
    .column-left h1 {
        font-size: 1.7rem;
        text-shadow: -1px 2px rgb(0, 0, 0, .25);
        -webkit-text-stroke: 1.4px black;
       }
    .column-left p1{
        font-size: .85rem;
        text-shadow: -1px 2px rgb(0, 0, 0, .25);
        -webkit-text-stroke: .6px black;
    }
    .column-left h2{
        font-size: 1.2rem;
        text-shadow: -1px 2px rgb(0, 0, 0, .25);
        -webkit-text-stroke: 1px black;
    }
    .column-left li{
        font-size: .95rem;
        text-shadow: -1px 2px rgb(0, 0, 0, .25);
        -webkit-text-stroke: .6px black;
    }
    
    .column-left h3{
        font-size: 2rem;
        margin-left: 6.5rem;
        padding-top: 20vh;
        text-shadow: -1px 2px rgb(0, 0, 0, .25);
        -webkit-text-stroke: 1.4px black;
    }
    .container {
        height: 55%;
    }
    .column-right{
        width: 100%;
        height: 63%;
        align-items: center;
    }
    .column-right #me-img{
        height:30%;
    }
    .row{
        align-items: center;
        height: 15%;
    }
}
